

/* 页脚样式 */
.footer-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    width: 1160px;
    height: 172px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-column {
    width: 360px;
    height: 172px;
    padding: 0 20px;
    box-sizing: border-box;
}

.footer-column h3 {
    font-size: 20px !important;
    font-weight: bold;
    margin-bottom: 20px;
    color: #00d084;
}

.footer-column p,
.footer-column a {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 14px !important;
}

.footer-column a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #00d084;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

.footer-bottom p {
    font-size: 14px !important;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #00d084;
    transform: translateY(-2px);
}

/* Footer中的按钮样式 - 与news界面保持一致 */
.footer-column .elementor-button-link {
    background-color: #0693e3 !important;
    border: none !important;
    color: white !important;
    border-radius: 25px !important;
    padding: 10px 20px !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    display: inline-block !important;
    margin: 0 5px !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.footer-column .elementor-button-link:hover {
    background-color: #00d084 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(100, 100, 100, 0.4) !important;
    color: white !important;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .footer-content {
        width: 90%;
        max-width: 1160px;
        flex-wrap: wrap;
        height: auto;
    }
    
    .footer-column {
        width: calc(33.333% - 20px);
        min-width: 280px;
        height: auto;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        width: 95%;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-column {
        width: 100%;
        max-width: 360px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .news-title {
        font-size: 20px;
    }
}
